home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htstools.h < prev    next >
C/C++ Source or Header  |  2004-12-11  |  4KB  |  135 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       various tools (filename analyzing ..)                  */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. #ifndef HTSTOOLS_DEFH
  40. #define HTSTOOLS_DEFH 
  41.  
  42. /* specific definitions */
  43. #include "htsbase.h"
  44. #include "htscore.h"
  45.  
  46. #ifdef _WIN32
  47. #else
  48. #include <dirent.h>
  49. #ifdef HAVE_UNISTD_H
  50. #include <unistd.h>
  51. #endif
  52. #include <sys/stat.h>
  53. #endif
  54.  
  55. #ifndef HTTRACK_DEFLIB
  56.  
  57. // Portable directory find functions
  58. #ifdef _WIN32
  59. typedef struct find_handle_struct {
  60.   WIN32_FIND_DATAA hdata;
  61.   HANDLE handle;
  62. } find_handle_struct;
  63. #else
  64. typedef struct find_handle_struct {
  65.   DIR * hdir;
  66.   struct dirent* dirp;
  67.   struct stat filestat;
  68.   char path[2048];
  69. } find_handle_struct;
  70. #endif
  71. typedef find_handle_struct* find_handle;
  72. typedef struct topindex_chain {
  73.   int level;                          /* sort level */
  74.   char* category;                     /* category */
  75.   char name[2048];                    /* path */
  76.   struct topindex_chain* next;        /* next element */
  77. } topindex_chain  ;
  78. #endif
  79.  
  80. /* Library internal definictions */
  81. #ifdef HTS_INTERNAL_BYTECODE
  82. int ident_url_relatif(char *lien,char* urladr,char* urlfil,char* adr,char* fil);
  83. int lienrelatif(char* s,char* link,char* curr);
  84. int link_has_authority(char* lien);
  85. int link_has_authorization(char* lien);
  86. void long_to_83(int mode,char* n83,char* save);
  87. void longfile_to_83(int mode,char* n83,char* save);
  88. HTS_INLINE int __rech_tageq(const char* adr,const char* s);
  89. HTS_INLINE int __rech_tageqbegdigits(const char* adr,const char* s);
  90. #define rech_tageq(adr,s) \
  91.   ( \
  92.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  93.     ( \
  94.       (streql(*(adr),*(s))) ?   \
  95.       (__rech_tageq((adr),(s))) \
  96.       : 0                       \
  97.     ) \
  98.     : 0\
  99.   )
  100. #define rech_tageqbegdigits(adr,s) \
  101.   ( \
  102.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  103.     ( \
  104.       (streql(*(adr),*(s))) ?   \
  105.       (__rech_tageqbegdigits((adr),(s))) \
  106.       : 0                       \
  107.     ) \
  108.     : 0\
  109.   )
  110. //HTS_INLINE int rech_tageq(const char* adr,const char* s);
  111. HTS_INLINE int rech_sampletag(const char* adr,const char* s);
  112. HTS_INLINE int rech_endtoken(const char* adr, const char** start);
  113. HTS_INLINE int check_tag(char* from,const char* tag);
  114. int verif_backblue(httrackp* opt,char* base);
  115. int verif_external(int nb,int test);
  116.  
  117. int istoobig(LLint size,LLint maxhtml,LLint maxnhtml,char* type);
  118. HTSEXT_API int hts_buildtopindex(httrackp* opt,char* path,char* binpath);
  119.  
  120. // Portable directory find functions
  121. // Directory find functions
  122. HTSEXT_API find_handle hts_findfirst(char* path);
  123. HTSEXT_API int hts_findnext(find_handle find);
  124. HTSEXT_API int hts_findclose(find_handle find);
  125. //
  126. HTSEXT_API char* hts_findgetname(find_handle find);
  127. HTSEXT_API int hts_findgetsize(find_handle find);
  128. HTSEXT_API int hts_findisdir(find_handle find);
  129. HTSEXT_API int hts_findisfile(find_handle find);
  130. HTSEXT_API int hts_findissystem(find_handle find);
  131.  
  132. #endif
  133.  
  134. #endif
  135.